Question 1. Convert Decimal 45 to Hexadecimal
Answer: 2D
- Divide 45 by 16. The quotient is 2 and the remainder is 13.
- 13 in hexadecimal is represented as D.
- Combine quotient and remainder: 2D.
Question 2. Convert Hexadecimal 3A to Decimal
Answer: 58
- 3A in hexadecimal means (3 * 16^1) + (10 * 16^0).
- 3 * 16 = 48 and 10 * 1 = 10.
- 48 + 10 = 58.
Question 3. Convert Decimal 150 to Hexadecimal
Answer: 96
- Divide 150 by 16. The quotient is 9 and the remainder is 6.
- Combine quotient and remainder: 96.
Question 4. Convert Hexadecimal 9F to Decimal
Answer: 159
- 9F in hexadecimal means (9 * 16^1) + (15 * 16^0).
- 9 * 16 = 144 and 15 * 1 = 15.
- 144 + 15 = 159.
Question 5. Convert Decimal 238 to Hexadecimal
Answer: EE
- Divide 238 by 16. The quotient is 14 and the remainder is 14.
- 14 in hexadecimal is represented as E.
- Combine quotient and remainder: EE.
Question 6. Convert Hexadecimal 10A to Decimal
Answer: 266
- 10A in hexadecimal means (1 * 16^2) + (0 * 16^1) + (10 * 16^0).
- 1 * 256 = 256 and 10 * 1 = 10.
- 256 + 10 = 266.
Question 7. Convert Decimal 370 to Hexadecimal
Answer: 172
- Divide 370 by 16. The quotient is 23 and the remainder is 2.
- 23 in hexadecimal is represented as 17.
- Combine quotient and remainder: 172.
Question 8. Convert Hexadecimal 1A3 to Decimal
Answer: 419
- 1A3 in hexadecimal means (1 * 16^2) + (10 * 16^1) + (3 * 16^0).
- 1 * 256 = 256, 10 * 16 = 160, and 3 * 1 = 3.
- 256 + 160 + 3 = 419.
Question 9. Convert Decimal 500 to Hexadecimal
Answer: 1F4
- Divide 500 by 16. The quotient is 31 and the remainder is 4.
- 31 in hexadecimal is represented as 1F.
- Combine quotient and remainder: 1F4.
Question 10. Convert Hexadecimal 2B6 to Decimal
Answer: 694
- 2B6 in hexadecimal means (2 * 16^2) + (11 * 16^1) + (6 * 16^0).
- 2 * 256 = 512, 11 * 16 = 176, and 6 * 1 = 6.
- 512 + 176 + 6 = 694.